home *** CD-ROM | disk | FTP | other *** search
/ Art Fundamentals - Core Concepts in Art / Art Fundamentals: Core Concepts in Art.iso / pc / shape_2.dxr / 00583.ls < prev    next >
Encoding:
Text File  |  2001-07-16  |  645 b   |  33 lines

  1. on mouseDown me
  2.   global shapetypes
  3.   if shapetypes = 1 then
  4.   else
  5.     if shapetypes = 2 then
  6.       set the blend of sprite 102 to 60
  7.       set the memberNum of sprite 102 to 589
  8.     end if
  9.   end if
  10.   updateStage()
  11. end
  12.  
  13. on mouseEnter
  14.   global shapetypes
  15.   if shapetypes = 1 then
  16.   else
  17.     if shapetypes = 2 then
  18.       set the memberNum of sprite 102 to 562
  19.       set the blend of sprite 102 to 100
  20.     else
  21.       if shapetypes = 3 then
  22.         set the memberNum of sprite 102 to 567
  23.         set the blend of sprite 102 to 100
  24.       end if
  25.     end if
  26.   end if
  27. end
  28.  
  29. on mouseLeave
  30.   global shapetypes
  31.   set the memberNum of sprite 102 to 575
  32. end
  33.